home *** CD-ROM | disk | FTP | other *** search
/ funcom 2000 Presskit / 000721_1312 (fun.com).iso / lyd.cst / 00049_Script_normal link < prev    next >
Text File  |  2000-04-18  |  542b  |  31 lines

  1. on mouseWithin me
  2.   global film
  3.   if film = "funcom" then
  4.     set the visible of sprite 23 =1
  5.   end if
  6.   if film = "noescape" then
  7.     set the visible of sprite 24 =1
  8.   end if  
  9.   if film = "cmx2" then
  10.     set the visible of sprite 25 =1
  11.   end if  
  12.   if film = "anarchy" then
  13.     set the visible of sprite 26 =1
  14.   end if  
  15.   
  16. end
  17.  
  18. on mouseLeave
  19.   repeat with i = 23 to 26
  20.     set the visible of sprite (i) to 0
  21.     updateStage
  22.   end repeat
  23. end
  24.  
  25.  
  26. on mouseUp me
  27.   global film
  28.   go to frame 1  of movie (film)
  29. end
  30.  
  31.